c2812af4b8e86a0af5eb41ef05ea455b582c2c40,platform/lang-impl/src/com/intellij/execution/ui/layout/impl/GridCellImpl.java,GridCellImpl,getSize,#,459
Before Change
@Nullable
public Dimension getSize() {
return DimensionService.getInstance().getSize(getDimensionKey(), myContext.getProject());
}
private String getDimensionKey() {
After Change
@Nullable
public Dimension getSize() {
String key = getDimensionKey();
if (key == null)
return null;
return DimensionService.getInstance().getSize(key, myContext.getProject());
}